home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / makhelp.arc / CALC.INC < prev    next >
Text File  |  1991-07-05  |  2KB  |  45 lines

  1.  
  2. {Help Text compiled by MAKEHELP from T.A.Darcos}
  3.  
  4. CONST
  5.       Help_Text:  ARRAY[1..26] OF STRING[80] =(
  6. {FIELD 1}
  7. '**** CALCULATOR HELP  -  First Operand  ****',
  8. ' ',
  9. 'This program does a calculation on two numbers.  The real purpose of this',
  10. 'program is to demonstrate the on-line help capability provided by the',
  11. 'T.A. Darcos MAKEHELP facility.  Right now, you should enter the first',
  12. 'number to be calculated upon, such as the 3 in 3+7, 3*7, 3-7 or 3/7.',
  13. ' ',
  14.  
  15. {FIELD 2}
  16. '**** CALCULATOR HELP  -  Operator  ****',
  17. ' ',
  18. 'Now you have to declare what operator to use.  Enter a + to add, a * to',
  19. 'multiply, a - to subtract or a / to divide, such as in',
  20. '3+7, 3*7, 3-7, or 3/7.',
  21. ' ',
  22.  
  23. {FIELD 3}
  24. '**** CALCULATOR HELP  -  Invisible Text  ****',
  25. ' ',
  26. 'Reproduction, use or examination of this program or file by',
  27. 'any person at any time is subject to severe automatic penalties including',
  28. 'execution by torture, starvation, suffocation, and confiscation of assets.',
  29. 'This is an invisible help text to show that not all help fields have to',
  30. 'be used, so fields can match numbers even if they are simply unused text.',
  31.  
  32. {FIELD 4}
  33. '**** CALCULATOR HELP  -  Second Operand  ****',
  34. ' ',
  35. 'Now you need to enter the second number.  Right now, you should enter the',
  36. 'second number to be calculated upon, such as the 7 in 3+7, 3*7, 3-7 or 3/7.',
  37. 'After you do this, the result will be computed and displayed.',
  38. ' '
  39.      );
  40.  
  41.      Help_Index:  ARRAY[1..4] OF ARRAY[1..2] OF BYTE = (
  42.      (1,7),(8,6),(14,7),(21,6)
  43.      );
  44.  
  45.